home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 9342 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: news.PBI.net!usenet
  2. From: mich@pbinet.com
  3. Newsgroups: comp.lang.c
  4. Subject: Re: turbo c --linker error
  5. Date: 9 Mar 1996 16:37:02 GMT
  6. Organization: Pacific Bell Internet Services
  7. Message-ID: <4hsc3e$efq@SNFC21_SRVR_WWW.PBI.net>
  8. References: <Pine.OSF.3.91.960307121411.26741A-100000@leofric>
  9. Reply-To: mich@pbinet.com
  10. NNTP-Posting-Host: ppp-5-36.rdcy01.pbinet.com
  11. X-Newsreader: IBM NewsReader/2 v1.03
  12.  
  13. In <Pine.OSF.3.91.960307121411.26741A-100000@leofric>, PAT DOOCEY <pdoocey@coventry.ac.uk> writes:
  14. >I've just downloaded a windowing library(WINDOWS.LIB) from the internet
  15. >and want to use it in my programs. However, when I run the demo.c program
  16. >in TURBO C 3.0 I get 10 errors of the type..... 
  17.  
  18. >linker error undefined symbol < > in module demo.c...... 
  19.  
  20. >The problem is obviously somewhere in my configuration of Turbo C
  21. >Can anyone tell me where the problem is. 
  22.  
  23. Your code is probably trying to link to a non-exsistant module. Check your
  24. header files and make sure there is a corrosponding .lib file (if possible.)
  25. Also check for missing source modules. I often encounter this error after I've
  26. obtained a new graphics, i/o library, etc, and haven't placed it in the defined
  27. include or lib paths. Then I hit my head and say "Wake up fool". For large
  28. libraries (or any library really) the best thing to do is place these things in a 
  29. separate subdir in your compiler home dir and then edit the ide's paths options.
  30.